home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / DISK_UTL / SHOWMAN / SHOWMAN.EXE / 0 / RCDATA / TOPTIONSDIALOG / TOPTIONSDIALOG.txt
Text File  |  1996-05-25  |  2KB  |  88 lines

  1. object OptionsDialog: TOptionsDialog
  2.   Left = 375
  3.   Top = 297
  4.   BorderStyle = bsDialog
  5.   Caption = 'ShowMan Options'
  6.   ClientHeight = 221
  7.   ClientWidth = 390
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   Position = poScreenCenter
  13.   OnShow = FormShow
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object PageControl1: TPageControl
  17.     Left = 0
  18.     Top = 0
  19.     Width = 390
  20.     Height = 221
  21.     ActivePage = SpaceSheet
  22.     Align = alClient
  23.     TabOrder = 0
  24.     object SpaceSheet: TTabSheet
  25.       Caption = 'Space'
  26.       object Label1: TLabel
  27.         Left = 16
  28.         Top = 96
  29.         Width = 353
  30.         Height = 49
  31.         Caption = 
  32.           'Space on the disk is allocated in fixed size clusters, thus wast' +
  33.           'ing space if these clusters are not completely filled.  Choose w' +
  34.           'hether you wish to include the wasted slack space in the display' +
  35.           ' and see a true picture.'
  36.         WordWrap = True
  37.       end
  38.       object RadioGroup1: TRadioGroup
  39.         Left = 16
  40.         Top = 8
  41.         Width = 241
  42.         Height = 73
  43.         Caption = ' Space Display '
  44.         TabOrder = 0
  45.       end
  46.       object btnBytesUsed: TRadioButton
  47.         Left = 32
  48.         Top = 24
  49.         Width = 209
  50.         Height = 25
  51.         Caption = 'Only show nominal bytes, ignore slack'
  52.         TabOrder = 1
  53.       end
  54.       object btnAllocated: TRadioButton
  55.         Left = 32
  56.         Top = 48
  57.         Width = 209
  58.         Height = 25
  59.         Caption = 'Show actual space on disk, with slack'
  60.         Checked = True
  61.         TabOrder = 2
  62.         TabStop = True
  63.       end
  64.     end
  65.   end
  66.   object Button1: TButton
  67.     Left = 211
  68.     Top = 184
  69.     Width = 75
  70.     Height = 25
  71.     Caption = 'OK'
  72.     Default = True
  73.     ModalResult = 1
  74.     TabOrder = 1
  75.     OnClick = Button1Click
  76.   end
  77.   object Button2: TButton
  78.     Left = 299
  79.     Top = 184
  80.     Width = 75
  81.     Height = 25
  82.     Cancel = True
  83.     Caption = 'Cancel'
  84.     ModalResult = 2
  85.     TabOrder = 2
  86.   end
  87. end
  88.